/* ================= NAVBAR ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

.container{

    width:92%;
    max-width:1300px;

    margin:auto;

}

/* Navbar */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.nav-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo img{

    height:55px;

    width:auto;

}

/* Navigation */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

    align-items:center;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#1e293b;

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00bfff;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links a.active{

    color:#00bfff;

}

/* Button */

.quote-btn{

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    color:#ffffff;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-3px);

}

/* Mobile Icon */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:26px;

    cursor:pointer;

    color:#1e293b;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .menu-toggle{

        display:block;

    }

    .quote-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#ffffff;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 25px rgba(0,0,0,.12);

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

}

/* =========================================================
                        TEAM HEADER
========================================================= */

.team-header{

    padding:120px 0 70px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.team-title{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.team-title h2{

    font-size:clamp(3rem,6vw,4.5rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:18px;

}

.team-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.team-title p{

    max-width:650px;

    margin:auto;

    color:#0c0d0d;

    font-size:19px;

    line-height:1.8;

}

/* =========================================================
                        ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* =========================================================
                        RESPONSIVE
========================================================= */

@media(max-width:768px){

    .team-header{

        padding:90px 0 50px;

    }

    .team-title p{

        font-size:16px;

    }

}

/* =========================================================
                    LEADERSHIP TEAM
========================================================= */

.leadership-section{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

    overflow:hidden;

}

/* =========================================================
                    HEADING
========================================================= */

.leadership-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.section-badge{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:3px;

    color:#3458d4;

    position:relative;

    margin-bottom:20px;

}

.section-badge::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#f5b400;

    margin:8px auto 0;

    border-radius:10px;

}

.leadership-heading h2{

    font-size:clamp(3rem,6vw,4.8rem);

    font-weight:800;

    color:#16326f;

    margin-bottom:25px;

}

.leadership-heading h2 span{

    color:#3458d4;

}

.leadership-heading h3{

    font-size:clamp(2rem,4vw,3.8rem);

    font-weight:800;

    color:#16326f;

    margin-bottom:25px;

}

.leadership-heading h3 span{

    color:#3458d4;

}

.leadership-heading p{

    font-size:20px;

    color:#000000;

    line-height:1.8;

}

/* =========================================================
                    GRID
========================================================= */

.leadership-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    column-gap:35px;

    row-gap:80px;

}

/* =========================================================
                    CARD
========================================================= */

.leader-card{

    position:relative;

    background:#ffffff;

    border-radius:24px;

    padding:80px 35px 35px;

    text-align:center;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    border-top:5px solid #3458d4;

    transition:.2s;

}

.leader-card:hover{

    transform:translateY(-12px);

    box-shadow:0 28px 60px rgba(0,0,0,.15);

}

/* =========================================================
                    IMAGE
========================================================= */

.leader-image{

    width:150px;

    height:150px;

    margin:-150px auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:5px solid #ffffff;

    box-shadow:0 8px 25px rgba(0,0,0,.18);

}

.leader-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* =========================================================
                    EXPERIENCE
========================================================= */

.experience-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:linear-gradient(
        135deg,
        #ffcf33,
        #ffb100
    );

    color:#000;

    padding:9px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

}

/* =========================================================
                    TEXT
========================================================= */

.leader-card h3{

    font-size:24px;

    font-weight:500;

    color:#0f172a;

    margin-bottom:10px;

}

.designation{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    border:2px solid #ffbf33;

    color:#ff9800;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:25px;

}

.leader-card p{

    color:#000000;

    font-size:19px;

    line-height:1.9;

}

/* =========================================================
                    ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.3s ease;

}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .leadership-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .leadership-section{

        padding:90px 0;

    }

    .leadership-grid{

        grid-template-columns:1fr;

    }

    .leader-card{

        padding:75px 25px 30px;

    }

    .leader-card h3{

        font-size:28px;

    }

    .leader-card p{

        font-size:16px;

    }

    .leader-image{

        width:130px;

        height:130px;

        margin-top:-135px;

    }

}

/* =========================================================
                ENVIRONMENT DEPARTMENT
========================================================= */

.environment-section{

    padding:100px 0;

    margin-top:90px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

/* =========================================================
                ENGINEERING DEPARTMENT
========================================================= */

.engineering-section{

    padding:100px 0;

    margin-top:90px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

/* =========================================================
                    FINANCE DEPARTMENT
========================================================= */

.finance-grid{

    display:flex;

    justify-content:center;

    align-items:center;

}

.finance-grid .leader-card{

    max-width:420px;

    width:100%;

}

/* =========================================================
                    TEAM STATS SECTION
========================================================= */

.team-stats-section{

    padding:110px 0 70px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:linear-gradient(
        135deg,
        rgba(0,198,255,.08),
        rgba(106,17,203,.08)
    );

    border:1px solid rgba(255,255,255,.75);

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    backdrop-filter:blur(10px);

    transition:.4s ease;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,198,255,.18);

}

.stat-card h2{

    display:inline-block;

    font-size:58px;

    font-weight:800;

    line-height:1;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.stat-card span{

    display:inline-block;

    font-size:52px;

    font-weight:800;

    margin-left:4px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.stat-card p{

    margin-top:15px;

    color:#000000;

    font-size:18px;

    font-weight:500;

    line-height:1.6;

}

/* =========================================================
                    JOIN TEAM SECTION
========================================================= */

.join-team-section{

    padding:40px 0 120px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.join-team-box{

    max-width:760px;

    margin:auto;

    padding:70px 50px;

    text-align:center;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        rgba(0,198,255,.08),
        rgba(106,17,203,.10)
    );

    border:1px solid rgba(255,255,255,.75);

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    backdrop-filter:blur(12px);

    transition:.4s;

}

.join-team-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.join-team-box h2{

    font-size:52px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:18px;

}

.join-team-box p{

    font-size:21px;

    color:#000000;

    margin-bottom:40px;

    line-height:1.7;

}

/* =========================================================
                        BUTTON
========================================================= */

.join-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 42px;

    border-radius:50px;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(0,198,255,.25);

}

.join-btn:hover{

    transform:translateY(-4px) scale(1.04);

    box-shadow:0 18px 38px rgba(106,17,203,.35);

}

/* =========================================================
                        ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .team-stats-section{

        padding:90px 0 50px;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-card{

        padding:35px 20px;

    }

    .stat-card h2{

        font-size:46px;

    }

    .stat-card span{

        font-size:42px;

    }

    .stat-card p{

        font-size:16px;

    }

    .join-team-section{

        padding:30px 0 90px;

    }

    .join-team-box{

        padding:50px 25px;

    }

    .join-team-box h2{

        font-size:38px;

    }

    .join-team-box p{

        font-size:17px;

    }

    .join-btn{

        width:100%;

        padding:16px;

    }

}

/* ================= CTA SECTION ================= */

.cta-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #edf9ff 0%,
        #f5f1ff 100%
    );

}

.cta-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.cta-content h2{

    font-size:clamp(3rem,5vw,4.5rem);

    font-weight:800;

    line-height:1.15;

    color:#0f172a;

    max-width:900px;

    margin:0 auto 25px;

}

.cta-content p{

    max-width:720px;

    margin:0 auto 50px;

    font-size:22px;

    line-height:1.7;

    color:#000000;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    min-width:270px;

    padding:18px 36px;

    text-decoration:none;

    border-radius:55px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

/* Primary */

.primary-btn{

    color:#fff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:
    0 15px 35px rgba(80,80,255,.25);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 45px rgba(80,80,255,.35);

}

.primary-btn i{

    transition:.3s;

}

.primary-btn:hover i{

    transform:translateX(6px);

}

/* Secondary */

.secondary-btn{

    background:#ffffff;

    color:#0f172a;

    border:1px solid #d9e3ef;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);

}

.secondary-btn:hover{

    background:#0f172a;

    color:#ffffff;

    border-color:#0f172a;

    transform:translateY(-5px);

}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-content p{

        font-size:18px;

    }

    .cta-buttons{

        flex-direction:column;

        gap:18px;

    }

    .cta-btn{

        width:100%;

        max-width:330px;

    }

}

/* ================= FOOTER ================= */

.footer{

    background:#1e293b;

    color:#cbd5e1;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:50px;

}

.footer-column h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:28px;

    font-weight:700;

}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    width:100%;

    max-width:190px;

    height:auto;

}

/* About */

.footer-about p{

    line-height:1.9;

    margin-bottom:35px;

    color:#94a3b8;

    font-size:17px;

}

/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    flex-shrink:0;

}

.contact-item a,
.contact-item span{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;

    transition:.3s;

}

.contact-item a:hover{

    color:#00d4ff;

}

/* Links */

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:18px;

}

.footer-column ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-column ul li a:hover{

    color:#00d4ff;

    padding-left:8px;

}

/* Social */

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,198,255,.35);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#00d4ff;

}

/* Responsive */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column h3{

        font-size:24px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn{

        width:100%;

        max-width:350px;

    }

    .contact-box p{

        font-size:24px;

    }

}